home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _E2125DFE6AF949D4BB4466617D74B417 < prev    next >
Encoding:
Text File  |  2006-08-04  |  2.6 KB  |  83 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'Jasc Software, Inc.',
  6.         'Copyright': 'Copyright (c) 2004 Jasc Software, Inc.  All rights reserved.',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro 9',
  9.         'Host Version': '9.00'
  10.         }
  11.  
  12. def MIPTemplate_Print():
  13.     return {
  14.         'PrintingOptions': {
  15.             'PrinterName': None, 
  16.             'Orientation': 0, 
  17.             'NumCopies': 1, 
  18.             'Negative': False, 
  19.             'Background': False, 
  20.             'BackgroundColor': (255,255,255), 
  21.             'OutputOption': 0, 
  22.             'CornerCropmarks': False, 
  23.             'CenterCropmarks': False, 
  24.             'RegistrationMarks': False, 
  25.             'ImageLabels': False, 
  26.             'Header': False, 
  27.             'HeaderText': '', 
  28.             'Footer': False, 
  29.             'FooterText': '', 
  30.             'CMYKLabels': False, 
  31.             'PrintQuality': 200, 
  32.             'PaperSize': 1
  33.             }, 
  34.         'MIPCmdFile': '', 
  35.         'TemplateMetric': False, 
  36.         'PageDimensions': (8.5,11), 
  37.         'TemplateCategory': 'Avery', 
  38.         'TemplateDescription': 'CD/DVD Label (spines)', 
  39.         'Template': [{
  40.             'CellPosition': (0.5615,0.8015), 
  41.             'CellSize': (0.084,4.553), 
  42.             'ImagePlacement': 2, 
  43.             'EllipticalCell': False, 
  44.             'ImagePath': '', 
  45.             'RotationAngle': 0, 
  46.             'ImagePosition': (0,0), 
  47.             'ImageSize': (0,0)
  48.             },{
  49.             'CellPosition': (0.5615,5.6465), 
  50.             'CellSize': (0.084,4.553), 
  51.             'ImagePlacement': 2, 
  52.             'EllipticalCell': False, 
  53.             'ImagePath': '', 
  54.             'RotationAngle': 0, 
  55.             'ImagePosition': (0,0), 
  56.             'ImageSize': (0,0)
  57.             },{
  58.             'CellPosition': (1.0305,0.8015), 
  59.             'CellSize': (0.084,4.553), 
  60.             'ImagePlacement': 2, 
  61.             'EllipticalCell': False, 
  62.             'ImagePath': '', 
  63.             'RotationAngle': 0, 
  64.             'ImagePosition': (0,0), 
  65.             'ImageSize': (0,0)
  66.             },{
  67.             'CellPosition': (1.0305,5.6465), 
  68.             'CellSize': (0.084,4.553), 
  69.             'ImagePlacement': 2, 
  70.             'EllipticalCell': False, 
  71.             'ImagePath': '', 
  72.             'RotationAngle': 0, 
  73.             'ImagePosition': (0,0), 
  74.             'ImageSize': (0,0)
  75.             }], 
  76.         'TextFieldList': []
  77.         }
  78.  
  79. def Do(Environment):
  80.     # Print_LOCALIZED
  81.     App.Do( Environment, 'Print',         MIPTemplate_Print())
  82.  
  83.